home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cocktail / reuse.lha / reuse / m2c / Main.c < prev    next >
C/C++ Source or Header  |  1992-08-18  |  2KB  |  119 lines

  1. #include "SYSTEM_.h"
  2.  
  3. #ifndef DEFINITION_General
  4. #include "General.h"
  5. #endif
  6.  
  7. #ifndef DEFINITION_Memory
  8. #include "Memory.h"
  9. #endif
  10.  
  11. #ifndef DEFINITION_Heap
  12. #include "Heap.h"
  13. #endif
  14.  
  15. #ifndef DEFINITION_DynArray
  16. #include "DynArray.h"
  17. #endif
  18.  
  19. #ifndef DEFINITION_Lists
  20. #include "Lists.h"
  21. #endif
  22.  
  23. #ifndef DEFINITION_Strings
  24. #include "Strings.h"
  25. #endif
  26.  
  27. #ifndef DEFINITION_Texts
  28. #include "Texts.h"
  29. #endif
  30.  
  31. #ifndef DEFINITION_StringMem
  32. #include "StringMem.h"
  33. #endif
  34.  
  35. #ifndef DEFINITION_Idents
  36. #include "Idents.h"
  37. #endif
  38.  
  39. #ifndef DEFINITION_Sets
  40. #include "Sets.h"
  41. #endif
  42.  
  43. #ifndef DEFINITION_SetsC
  44. #include "SetsC.h"
  45. #endif
  46.  
  47. #ifndef DEFINITION_Relations
  48. #include "Relations.h"
  49. #endif
  50.  
  51. #ifndef DEFINITION_IO
  52. #include "IO.h"
  53. #endif
  54.  
  55. #ifndef DEFINITION_StdIO
  56. #include "StdIO.h"
  57. #endif
  58.  
  59. #ifndef DEFINITION_Layout
  60. #include "Layout.h"
  61. #endif
  62.  
  63. #ifndef DEFINITION_Positions
  64. #include "Positions.h"
  65. #endif
  66.  
  67. #ifndef DEFINITION_Errors
  68. #include "Errors.h"
  69. #endif
  70.  
  71. #ifndef DEFINITION_Sort
  72. #include "Sort.h"
  73. #endif
  74.  
  75. #ifndef DEFINITION_Source
  76. #include "Source.h"
  77. #endif
  78.  
  79. #ifndef DEFINITION_System
  80. #include "System.h"
  81. #endif
  82.  
  83. #ifndef DEFINITION_Checks
  84. #include "Checks.h"
  85. #endif
  86.  
  87. #ifndef DEFINITION_Times
  88. #include "Times.h"
  89. #endif
  90.  
  91.  
  92.  
  93. void BEGIN_MODULE()
  94. {
  95.   BEGIN_General();
  96.   BEGIN_Memory();
  97.   BEGIN_Heap();
  98.   BEGIN_DynArray();
  99.   BEGIN_Lists();
  100.   BEGIN_Strings();
  101.   BEGIN_Texts();
  102.   BEGIN_StringMem();
  103.   BEGIN_Idents();
  104.   BEGIN_Sets();
  105.   BEGIN_SetsC();
  106.   BEGIN_Relations();
  107.   BEGIN_IO();
  108.   BEGIN_StdIO();
  109.   BEGIN_Layout();
  110.   BEGIN_Positions();
  111.   BEGIN_Errors();
  112.   BEGIN_Sort();
  113.   BEGIN_Source();
  114.   BEGIN_System();
  115.   BEGIN_Checks();
  116.   BEGIN_Times();
  117.  
  118. }
  119.